home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / checkbox / registries / pvs.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2009-11-11  |  2KB  |  28 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. import re
  5. from checkbox.lib.cache import cache
  6. from checkbox.lib.conversion import string_to_type
  7. from checkbox.properties import String
  8. from checkbox.registries.command import CommandRegistry
  9. from checkbox.registries.map import MapRegistry
  10.  
  11. class PvsRegistry(CommandRegistry):
  12.     '''Registry for pvs information.
  13.  
  14.     Each item contained in this registry consists information about
  15.     the mount point.
  16.     '''
  17.     command = String(default = 'pvs')
  18.     user = String(default = 'root')
  19.     
  20.     def items(self):
  21.         items = []
  22.         lines = _[1]
  23.         return items
  24.  
  25.     items = cache(items)
  26.  
  27. factory = PvsRegistry
  28.